-
Notifications
You must be signed in to change notification settings - Fork 668
fix: automatically extend extended child components #595
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -9,5 +9,6 @@ declare type Options = { // eslint-disable-line no-undef | |||
stubs?: Object, | |||
context?: Object, | |||
attrs?: Object, | |||
listeners?: Object | |||
listeners?: Object, | |||
logModifiedComponents?: Boolean |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is necessary to add the types to the below files.
provide?: object |
provide?: object |
docs/en/api/config.md
Outdated
- type: `Boolean` | ||
- default: `true` | ||
|
||
Logs warning when extended child components are automatically stubbed. Hides warnings when set to `false`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that it is better to describe that logModifiedComponents
can not be overwritten by mounting options.
Closes #382